home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_200 / 224_01 / wc.hlp < prev   
Text File  |  1985-12-31  |  640b  |  15 lines

  1. NAME
  2.      wc - word count
  3.  
  4. SYNTAX
  5.      wc [-lwc] [ name ... ]
  6.  
  7. DESCRIPTION
  8.     Wc counts lines, words and characters in the named files, or in the 
  9.     standard input if no name appears.  A word is a string of characters 
  10.     delimited by spaces, tabs or newlines.  The counts are output for each
  11.     file, and a total count is output if there is more than one file.
  12.  
  13.     If an option argument is present, the specified counts (lines, words, or 
  14.     characters) are selected by the letters l, w, or c.  The default is -lwc.
  15.